home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 125 / Computer Shopper CD-ROM Issue 125 (1998-07)(Dennis Publishing).iso / Business / Dazzler / DAZZLER.Z / CMenuAction.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-11-26  |  539 b   |  15 lines

  1. import java.io.DataInputStream;
  2.  
  3. public class CMenuAction extends CAction {
  4.    public CMenuAction() {
  5.       super(46);
  6.    }
  7.  
  8.    boolean LoadFromFile(DataInputStream var1) {
  9.       CMenuItemList var2 = new CMenuItemList();
  10.       ((CObList)var2).LoadFromFile(var1);
  11.       System.out.println("Warning: Menu Action not supported in this version");
  12.       return super.LoadFromFile(var1);
  13.    }
  14. }
  15.